100 |
How can I change the group's caption
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->AddItem(L"Item 3",vtMissing); var_Group->PutCaption(L"new caption"); var_Group->PutExpanded(VARIANT_TRUE); |
99 |
How can I get the number or count of items in a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->AddItem(L"Item 3",vtMissing); var_Group->AddItem(_bstr_t(var_Group->GetCount()),vtMissing); var_Group->PutExpanded(VARIANT_TRUE); |
98 |
How can I access an item in a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->AddItem(L"Item 3",vtMissing); var_Group->GetItem(long(1))->PutBold(VARIANT_TRUE); var_Group->PutExpanded(VARIANT_TRUE); |
97 |
How can I remove all items, from a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->AddItem(L"Item 3",vtMissing); var_Group->Clear(); var_Group->PutExpanded(VARIANT_TRUE); |
96 |
How can I remove an item, from a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->AddItem(L"Item 3",vtMissing); var_Group->RemoveItem(long(1)); var_Group->PutExpanded(VARIANT_TRUE); |
95 |
How can I add a new item to a group
|
94 |
How can I add a new item to a group
|
93 |
How can I add a new item to a group
|
92 |
How can I get the groups as they are listed
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupsPtr var_Groups = spExplorerBar1->GetGroups(); var_Groups->Add(L"Group 1"); var_Groups->Add(L"Group 2"); var_Groups->Add(L"Group 3"); |
91 |
How can I access a group by position
|
90 |
How can I access a group
|
89 |
How can I clear the groups collection
|
88 |
How can I remove a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupsPtr var_Groups = spExplorerBar1->GetGroups(); var_Groups->Add(L"Group 1"); var_Groups->Add(L"Group 2"); var_Groups->Add(L"Group 3"); var_Groups->Remove(long(1)); |
87 |
How can I add a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); |
86 |
How do I count the number of groups
|
85 |
How can I display pictures with a custom size, instead icons, in the shortcut bar
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set 1"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set 1"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set 2"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set 2"); spExplorerBar1->PutShortcutPicture(L"Set 1",((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")))); spExplorerBar1->PutShortcutPicture(L"Set 2",((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\auction.gif`)")))); spExplorerBar1->PutShortcutPictureWidth(32); spExplorerBar1->PutShortcutPictureHeight(32); spExplorerBar1->PutShortcutBarHeight(32); |
84 |
How can I display pictures instead icons, in the shortcut bar
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set 1"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set 1"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set 2"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set 2"); spExplorerBar1->PutShortcutPicture(L"Set 1",((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")))); spExplorerBar1->PutShortcutPicture(L"Set 2",((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\auction.gif`)")))); spExplorerBar1->PutShortcutBarHeight(44); |
83 |
How can I change the visual appearance of the shortcut bar, using EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spExplorerBar1->GetVisualAppearance()->Add(2,"c:\\exontrol\\images\\pushed.ebn"); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutResizeBackColor(0x2000000); spExplorerBar1->PutShortcutBarSelCaptionBackColor(0x1000000); spExplorerBar1->PutShortcutBarSelBackColor(0x1000000); spExplorerBar1->PutBackColorGroup(0x1000000); |
82 |
How can I change the visual appearance of the separator between groups and the shortcut bar, using your EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutResizeBackColor(0x1000000); spExplorerBar1->PutExpandShortcutCount(1); |
81 |
How do I change the background color of the separator between groups and the shortcut bar
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutResizeBackColor(RGB(255,0,0)); spExplorerBar1->PutExpandShortcutCount(1); |
80 |
How can I change the visual appearance of the shortcut bar, using your EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutBarSelCaptionBackColor(0x1000000); spExplorerBar1->PutExpandShortcutCount(1); |
79 |
How do I change the selection background color in the shortcut bar
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutBarSelCaptionBackColor(RGB(255,0,0)); spExplorerBar1->PutExpandShortcutCount(1); |
78 |
How can I change the visual appearance of the shortcut bar, using your EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutBarSelBackColor(0x1000000); |
77 |
How do I change the selection background color in the shortcut bar
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutBarSelBackColor(RGB(255,0,0)); |
76 |
How can I change the visual appearance of the shortcut bar, using your EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutBarBackColor(0x1000000); |
75 |
How do I change the background color in the shortcut bar
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutShortcutBarBackColor(RGB(255,0,0)); |
74 |
How can I programmatically change expand or collapse the shortcut bar
|
73 |
How do I change the icon for the expanding or collapsing the shortcut bar
|
72 |
How can I enable or disable resizing the shortcut bar
|
71 |
How do I specify the height of the shortcut bar
|
70 |
How do I select a shortcut
|
69 |
How do I show or hide the shortcut bar
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutShowShortcutBar(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 2")->PutShortcut(L"Set <img>1</img>"); spExplorerBar1->GetGroups()->Add(L"Group 3")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->GetGroups()->Add(L"Group 4")->PutShortcut(L"Set <img>2</img>"); spExplorerBar1->PutExpandShortcutCount(1); |
68 |
How do I access the groups collection
|
67 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it
|
66 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutFormatAnchor(VARIANT_FALSE,L"<b><u><fgcolor=FF0000> </fgcolor></u></b>"); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exNoHighlight); spExplorerBar1->PutHandCursor(VARIANT_FALSE); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item <a1><b>1</b></a>",vtMissing)->PutCaptionFormat(EXPLORERBARLib::exHTML); var_Group->PutExpanded(VARIANT_TRUE); |
65 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions
|
64 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exNoHighlight); spExplorerBar1->PutHandCursor(VARIANT_FALSE); spExplorerBar1->PutFormatAnchor(VARIANT_TRUE,L"<b><u><fgcolor=FF0000> </fgcolor></u></b>"); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item <a1><b>1</b></a>",vtMissing)->PutCaptionFormat(EXPLORERBARLib::exHTML); var_Group->PutExpanded(VARIANT_TRUE); |
63 |
How can I add several pictures and icons to an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spExplorerBar1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->PutItemHeight(48); EXPLORERBARLib::IItemPtr var_Item = var_Group->AddItem(L"<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>",vtMissing); var_Item->PutImage(long(2)); var_Item->PutCaptionFormat(EXPLORERBARLib::exHTML); var_Group->PutExpanded(VARIANT_TRUE); |
62 |
How can I add several pictures and icons to an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spExplorerBar1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->PutItemHeight(48); EXPLORERBARLib::IItemPtr var_Item = var_Group->AddItem(L"<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>",vtMissing); var_Item->PutImage(long(2)); var_Item->PutCaptionFormat(EXPLORERBARLib::exHTML); var_Group->PutExpanded(VARIANT_TRUE); |
61 |
How can I add several pictures to an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spExplorerBar1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->PutItemHeight(48); var_Group->AddItem(L"<img>pic1</img> text <img>pic2</img>",vtMissing)->PutCaptionFormat(EXPLORERBARLib::exHTML); var_Group->PutExpanded(VARIANT_TRUE); |
60 |
How can I add several pictures to a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spExplorerBar1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); spExplorerBar1->PutGroupHeight(48); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>"); var_Group->PutImage(long(2)); var_Group->PutCaptionFormat(EXPLORERBARLib::exHTML); var_Group->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)"))))); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); |
59 |
How can I add several pictures and icons to a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spExplorerBar1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); spExplorerBar1->PutGroupHeight(48); spExplorerBar1->GetGroups()->Add(L"<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>")->PutCaptionFormat(EXPLORERBARLib::exHTML); |
58 |
How can I add several pictures to a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spExplorerBar1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); spExplorerBar1->PutGroupHeight(48); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"<img>pic1</img> text <img>pic2</img>"); var_Group->PutCaptionFormat(EXPLORERBARLib::exHTML); var_Group->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)"))))); var_Group->AddItem(L"Item 1",vtMissing); var_Group->AddItem(L"Item 2",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); |
57 |
How can I add several pictures to a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spExplorerBar1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); spExplorerBar1->PutGroupHeight(48); spExplorerBar1->GetGroups()->Add(L"<img>pic1</img> text <img>pic2</img>")->PutCaptionFormat(EXPLORERBARLib::exHTML); |
56 |
How do I force refreshing the control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->PutExpanded(VARIANT_TRUE); var_Group->AddItem(L"Item 1",vtMissing); spExplorerBar1->Refresh(); |
55 |
How can show or hide the focus rectangle
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutShowFocusRect(VARIANT_FALSE); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->PutExpanded(VARIANT_TRUE); var_Group->AddItem(L"Item 1",vtMissing); |
54 |
I've seen that the width of the tooltip is variable. Can I make it larger
|
53 |
How do I let the tooltip being displayed longer
|
52 |
Can I change the default border of the tooltip, using your EBN files
|
51 |
Can I change the background color for the tooltip
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutToolTipDelay(1); spExplorerBar1->PutToolTipWidth(364); spExplorerBar1->PutBackground(EXPLORERBARLib::exToolTipBackColor,RGB(255,0,0)); spExplorerBar1->GetGroups()->Add(L"ToolTip")->PutToolTip("<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group."); |
50 |
Does the tooltip support HTML format
|
49 |
Can I change the forecolor for the tooltip
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutToolTipDelay(1); spExplorerBar1->PutToolTipWidth(364); spExplorerBar1->PutBackground(EXPLORERBARLib::exToolTipForeColor,RGB(255,0,0)); spExplorerBar1->GetGroups()->Add(L"ToolTip")->PutToolTip("This is a bit of text that's shown when the cursor hovers the group."); |
48 |
Can I change the foreground color for the tooltip
|
47 |
Can I change the font for the tooltip
|
46 |
Can I change the font for the tooltip
|
45 |
How do I disable showing the tooltip for all control
|
44 |
How do I show the tooltip quicker
|
43 |
How do I call your x-script language
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); EXPLORERBARLib::IGroupPtr var_Group = ((EXPLORERBARLib::IGroupPtr)(spExplorerBar1->ExecuteTemplate(L"Groups.Add(`Group 1`)"))); var_Group->AddItem(L"Item 1",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); |
42 |
How do I call your x-script language
|
41 |
How can I hide a tooltip when the item exceeds its area, so ... are displayed
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutAllowTooltip(VARIANT_FALSE); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->PutExpanded(VARIANT_TRUE); var_Group->AddItem(L"This isa very long text that should break the control in several pieces",vtMissing); |
40 |
How can I show a tooltip when the item exceeds its area, so ... are displayed
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutAllowTooltip(VARIANT_TRUE); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->PutExpanded(VARIANT_TRUE); var_Group->AddItem(L"This isa very long text that should break the control in several pieces",vtMissing); |
39 |
How do I specify the distance between two groups
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutBorderGroupHeight(0); spExplorerBar1->GetGroups()->Add(L"Group 1"); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); |
38 |
How can I change the expand / collapse buttons
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutExpandIcon(VARIANT_TRUE,1); spExplorerBar1->PutExpandIcon(VARIANT_FALSE,2); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
37 |
How do I enable or disable the control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutEnabled(VARIANT_FALSE); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); |
36 |
How do I hide the icons in the right side of the group, the expand / collapse buttons
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->PutDisplayExpandIcon(VARIANT_FALSE); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
35 |
Is there any option to stop using the hand shape cursor, when the cursor hovers an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->PutHandCursor(VARIANT_FALSE); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exNoHighlight); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
34 |
How do I specify the color to highlight the item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHyperLinkColor(RGB(255,0,0)); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exHyperLink); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
33 |
How can I expand or collapse a group when I click only its right icon
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->PutExpandOnClick(VARIANT_FALSE); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exHyperLink); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
32 |
How do I remove the control's borders
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->PutAppearance(EXPLORERBARLib::exNone); spExplorerBar1->PutBorderWidth(0); spExplorerBar1->PutBorderHeight(0); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exHyperLink); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
31 |
How do I specify width or the height of the control's borders
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->PutAppearance(EXPLORERBARLib::exNone); spExplorerBar1->PutBorderWidth(0); spExplorerBar1->PutBorderHeight(0); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exHyperLink); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
28 |
How do I specify to highlight the items in the group, when the cursor hovers the item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exHyperLink); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
27 |
How do I specify to highlight the items in the group, when the cursor hovers the item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exUnion); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
26 |
How do I specify to highlight the items in the group, when the cursor hovers the item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exIcon); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
25 |
How do I specify to highlight the items in the group, when the cursor hovers the item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exCaption); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing)->PutImage(long(1)); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
24 |
How do I specify the way the control highlight the items in the group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); spExplorerBar1->PutHighlightItemType(EXPLORERBARLib::exNoHighlight); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
23 |
Is there any function to avoid painting the control while adding multiple items and groups
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->BeginUpdate(); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2")->AddItem(L"Item 2",vtMissing); spExplorerBar1->EndUpdate(); |
22 |
How do I decrease the delay to scroll a group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutDelayScroll(0); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); EXPLORERBARLib::IGroupPtr var_Group1 = spExplorerBar1->GetGroups()->Add(L"Group 2"); var_Group1->AddItem(L"Item 2",vtMissing); var_Group1->PutExpanded(VARIANT_TRUE); |
21 |
How do I display icons
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutSmallIcons(VARIANT_TRUE); spExplorerBar1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spExplorerBar1->GetGroups()->Add(L"Group 1")->PutImage(long(1)); |
20 |
How do I display 32x32 icons
|
19 |
How do I specify the height of the groups
|
18 |
How do I change the visual appearance of the groups
|
17 |
How do I change the visual appearance of the groups, using your EBN files
|
16 |
How do I change the background color for the groups
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutBackColorGroup(RGB(255,0,0)); spExplorerBar1->PutBackColorGroup2(RGB(255,0,0)); spExplorerBar1->GetGroups()->Add(L"Group 1"); |
15 |
How do I change the background color for the groups
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutBackColorGroup(RGB(255,0,0)); spExplorerBar1->GetGroups()->Add(L"Group 1"); |
14 |
How do I change the control's foreground color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutForeColor(RGB(0,0,255)); spExplorerBar1->PutForeColorGroup(RGB(255,0,0)); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); spExplorerBar1->GetGroups()->Add(L"Group 2"); |
13 |
How can I change the control's font
|
12 |
How do I change the control's foreground color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutForeColor(RGB(255,0,0)); EXPLORERBARLib::IGroupPtr var_Group = spExplorerBar1->GetGroups()->Add(L"Group 1"); var_Group->AddItem(L"Item 1",vtMissing); var_Group->PutExpanded(VARIANT_TRUE); |
11 |
How do I change the control's background color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutBackColor(RGB(200,200,200)); |
10 |
How do I change the control's border, using your EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spExplorerBar1->PutAppearance(EXPLORERBARLib::AppearanceEnum(0x1000000)); |
9 |
How do I remove the control's border
|
8 |
How do I put a picture on the center of the control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spExplorerBar1->PutPictureDisplay(EXPLORERBARLib::MiddleCenter); |
7 |
How do I resize/stretch a picture on the control's background
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spExplorerBar1->PutPictureDisplay(EXPLORERBARLib::Stretch); |
6 |
How do I put a picture on the control's center right bottom side
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spExplorerBar1->PutPictureDisplay(EXPLORERBARLib::LowerRight); |
5 |
How do I put a picture on the control's center left bottom side
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spExplorerBar1->PutPictureDisplay(EXPLORERBARLib::LowerLeft); |
4 |
How do I put a picture on the control's center top side
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spExplorerBar1->PutPictureDisplay(EXPLORERBARLib::UpperCenter); |
3 |
How do I put a picture on the control's right top corner
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spExplorerBar1->PutPictureDisplay(EXPLORERBARLib::UpperRight); |
2 |
How do I put a picture on the control's left top corner
/* Copy and paste the following directives to your header file as it defines the namespace 'EXPLORERBARLib' for the library: 'ExplorerBar 1.0 Control Library' #import <ExplorerBar.dll> using namespace EXPLORERBARLib; */ EXPLORERBARLib::IExplorerBarPtr spExplorerBar1 = GetDlgItem(IDC_EXPLORERBAR1)->GetControlUnknown(); spExplorerBar1->PutPicture(IPictureDispPtr(((IDispatch*)(spExplorerBar1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spExplorerBar1->PutPictureDisplay(EXPLORERBARLib::UpperLeft); |
1 |
How do I put a picture on the control's background
|